home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 February / february_2000.iso / site building / GoLive 4.0 Tryout / data1.cab / Apps / Modules / JScripts / GlobalScripts / StylePos.scpt < prev    next >
Encoding:
Text File  |  1999-08-05  |  385 b   |  5 lines

  1. function CSSetStylePos(s,d,p) { if (IsIE()) { if (d == 0) CSIEStyl(s).posLeft = p; else CSIEStyl(s).posTop = p; }
  2.     else { if (d == 0) CSNSStyl(s).left = p; else CSNSStyl(s).top = p; } }
  3. function CSGetStylePos(s,d) { if (IsIE()) { if (d == 0) return CSIEStyl(s).posLeft; else return CSIEStyl(s).posTop; }
  4.     else { if (d == 0) return CSNSStyl(s).left; else return CSNSStyl(s).top; }}
  5.